home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc A) / Acorn User China CD-ROM (UK) (Disc A).bin / HENSA / BBS / ARCHIBOARD.ARC / !BulBoard_Scripts_NewUserEtr < prev    next >
Encoding:
Text File  |  1993-09-14  |  606 b   |  28 lines

  1. {
  2.   string choice;
  3.  
  4.   choice = "N";
  5.  
  6.   while( choice == "N" ) {
  7.     change_user_data( "£gForm£w:" );
  8.     change_terminal();
  9.     change_pause_page();
  10.     change_clear_screen();
  11.     change_hotkeys();
  12.     change_backspace();
  13.     choice = read_select( "\nIs the above information correct (Y/N)?", "YyNn" );
  14.   }
  15.  
  16.   print_string( "\\x" );
  17.   choice = "N";
  18.   while( choice == "N" ) {
  19.     change_name();
  20.     change_pseudonym();
  21.     change_address();
  22.     change_telephone();
  23.     choice = read_select( "\nIs the above information correct (Y/N)?", "YyNn" );
  24.   }
  25.   display_textfile( "NewPass" );
  26.   change_password();
  27. }
  28.